home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-ROM Collection / Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso / auge4000 / 46 / lib / string / strrchr.c < prev    next >
C/C++ Source or Header  |  1990-06-20  |  331b  |  25 lines

  1.  
  2. /*
  3.  *  STRRCHR.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <stddef.h>
  9. #include <string.h>
  10.  
  11. char *
  12. strrchr(toks, c)
  13. const char *toks;
  14. int c;
  15. {
  16.     const char *ptr = toks + strlen(toks);
  17.  
  18.     while (ptr > toks && *ptr != (char)c)
  19.     --ptr;
  20.     if (*ptr == (char)c)
  21.     return(ptr);
  22.     return(NULL);
  23. }
  24.  
  25.